projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90a331c
)
gtklistboxrow: propagate in the draw vfunc
author
Carlos Soriano
<csoriano@gnome.org>
Wed, 10 Jun 2015 15:42:10 +0000
(17:42 +0200)
committer
Carlos Soriano
<csoriano@gnome.org>
Wed, 10 Jun 2015 15:47:23 +0000
(17:47 +0200)
So objects connected by g_signal_connect_after actually get
the signal.
This was causing an issue in the dnd highlight, since there
a cairo rectangle is draw using g_signal_connect_after on the draw
signal.
gtk/gtklistbox.c
patch
|
blob
|
history
diff --git
a/gtk/gtklistbox.c
b/gtk/gtklistbox.c
index 9e6286185e62341e4e6b3ea7b37dc66ac3706390..94c7288c2c5ed5cc4e31ac8709b3d7aa3cd8b2b8 100644
(file)
--- a/
gtk/gtklistbox.c
+++ b/
gtk/gtklistbox.c
@@
-3089,7
+3089,7
@@
gtk_list_box_row_draw (GtkWidget *widget,
GTK_WIDGET_CLASS (gtk_list_box_row_parent_class)->draw (widget, cr);
- return
TRU
E;
+ return
GDK_EVENT_PROPAGAT
E;
}
static void